home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / OtherLibs / SmallError / Makefile
Makefile  |  1995-09-04  |  544b  |  35 lines

  1. #    Library-making makefile
  2.  
  3. CC        =    cc
  4. LIBFILE        =    LibFile
  5.  
  6. CCFlags        =    -c -fahif -depend !Depend -throwback -I,C:
  7. LibFileFlags    =    -c -o
  8.  
  9. Target        =    <DeskLib$Dir>.o.Other.SmError
  10.  
  11. ObjectFiles    =            \
  12.             o.Error        \
  13.  
  14.  
  15. # path(s) to source files:
  16. VPATH = @ @.^
  17.  
  18. # Don't change the following
  19.  
  20. .SUFFIXES:    .o .c
  21.  
  22. $(Target):    $(ObjectFiles)
  23.     $(LIBFILE) $(LibFileFlags) $@ $(ObjectFiles)
  24.  
  25. .c.o:
  26.     $(CC) $(CCFlags) -o $@ $<
  27.  
  28.  
  29. # Dynamic dependencies:
  30. o.Error:    c.Error
  31. o.Error:    DeskLib:h.Error
  32. o.Error:    DeskLib:h.Core
  33. o.Error:    DeskLib:h.Event
  34. o.Error:    DeskLib:h.Wimp
  35.